home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / COMM / INTERNET / TELNET / RLOGIND / !RloginD / telnet / Makefile < prev    next >
Makefile  |  1993-09-02  |  629b  |  22 lines

  1. #
  2. # Makefile for rxtelnet
  3. # rxtelnet: remote login server for Archimedes !RloginD
  4. #
  5. # Alter PORT          set it to your favourite unused port number
  6. # Add -DESCAPED_CHARS if chars < 32 are raised by 32 and escaped
  7. # Add -DLOG_CHARS     if all chars passing through are to be logged
  8. # Add -DSTRIP14       if char 14 badly affects terminal and should be stripped
  9. # Add -DDEL2BS        if you want Delete mapped to Backspace
  10.  
  11. PORT=2112
  12. CFLAGS=-g -DPORT=$(PORT) -DLOG_CHARS -DSTRIP14 -DDEL2BS
  13. CC=cc
  14.  
  15. all: rxtelnet
  16.  
  17. rxtelnet: rxtelnet.c term.o
  18.     $(CC) $(CFLAGS) -o rxtelnet rxtelnet.c term.o
  19.  
  20. term.o: term.h cproto.h
  21.     $(CC) -c term.c
  22.